home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacGames Sampler
/
PHT MacGames Bundle.iso
/
MacSource Folder
/
Samples from the CD
/
Editors
/
emacs
/
Emacs-1.14b1-sources
/
sources
/
misc-headers
/
sys⁄unistd.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-05-15
|
279 b
|
15 lines
|
[
TEXT/EMAC
]
/*
* sys/unistd.h
*/
#ifndef __SYS_UNISTD__
#define __SYS_UNISTD__
/* For access() */
#define F_OK 0 /* does file exist */
#define X_OK 1 /* is it executable by caller */
#define W_OK 2 /* is it writable by caller */
#define R_OK 4 /* is it readable by caller */
#endif